'Declaration Public Overloads Sub DrawLines( _
ByVal penThe pen that determines the color, width, and style of the lines.As IDrawingPen, _
ByVal pointsArray of System.Drawing.PointF structures, which represent the points to connect.() As System.Drawing.PointF, _
ByVal startCapA line cap that should be used for drawing of start cap of line.As DrawingLineCap, _
ByVal endCapA line cap that should be used for drawing of end cap of line.As DrawingLineCap _
)
public void DrawLines(
IDrawingPen pen,
System.Drawing.PointF[] points,
DrawingLineCap startCap,
DrawingLineCap endCap
)
public: void DrawLines(
IDrawingPen* pen,
System.Drawing.PointF[]* points,
DrawingLineCap* startCap,
DrawingLineCap* endCap
)
public:
void DrawLines(
IDrawingPen^ pen,
array<System.Drawing.PointF>^ points,
DrawingLineCap^ startCap,
DrawingLineCap^ endCap
)
Parameters
- pen
- The pen that determines the color, width, and style of the lines.
- points
- Array of System.Drawing.PointF structures, which represent the points to connect.
- startCap
- A line cap that should be used for drawing of start cap of line.
- endCap
- A line cap that should be used for drawing of end cap of line.